Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

files of /cody/swapnilsparsh/30DaysOfJavaScript/176 - Dot Target Game/

index.html /cody/swapnilsparsh/30DaysOfJavaScript/176 - Dot Target Game/index.html
410 Views
0 Comments
<!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="UTF-8">
<title>Dot Target game</title>
<link rel="stylesheet" href
preview.gif /cody/swapnilsparsh/30DaysOfJavaScript/176 - Dot Target Game/preview.gif
137 Views
0 Comments
Media file
readme.md /cody/swapnilsparsh/30DaysOfJavaScript/176 - Dot Target Game/readme.md
215 Views
0 Comments
# Dot Target Game
## Clisk on the Dots That are Moving to Get The Points

![](./preview.gif)
script.js /cody/swapnilsparsh/30DaysOfJavaScript/176 - Dot Target Game/script.js
175 Views
0 Comments
$(document).ready(function() {

let totalPoints = 0;
let points = 0;

$('[class$="-circle"]').on('click', 'span', function(e)
style.css /cody/swapnilsparsh/30DaysOfJavaScript/176 - Dot Target Game/style.css
159 Views
0 Comments
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}

*:focus {
outline: 0;